@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;

}

/* .container {
    width: 100%;
    height: auto;
    overflow: hidden;
} */
body {
    background: black;
}
html{
    scroll-behavior: smooth;
}
.hamburger{
    display: none;
}
.container .top-header {
    width: 90%;
    height: 10vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px auto;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    color: white;
    transition: all 0.4s ease-in-out;
}
.container .top-header.topmenu{
    position: fixed;
    width: 100%;
    transition: all 0.4s ease-in-out;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0%;
    z-index: 100000;
}

.container .top-header .right-logo h1 {
    font-size: 2em;
    letter-spacing: 0.2rem;
    cursor: pointer;
}

.container .topmenu .right-logo h1 {
    color: black;
}
.container .top-header .social-links ul {
    list-style: none;
}

.container .topmenu .right-logo .sz{
    color: rgba(0, 0, 0, 0.5);
}
.container .top-header .social-links ul li {
    display: inline-block;
    padding: 10px 0px;
    position: relative;
}

.container .top-header .social-links ul li a {
    position: relative;
    text-decoration: none;
    padding: 7px 18px;
    color: white;
    letter-spacing: 1.2px;
    transition: all 0.4s ease-in-out;
}
.container .top-header .social-links ul li a:hover{
    color: wheat;
    transition: all 0.4s ease-in-out;
}

.container .topmenu .social-links ul li a{
    color: black;
}
.container .topmenu .social-links ul li a:hover{
    color: black;
}

.container .top-header .social-links ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: white;
    top: 10%;
    left: 0%;
    transform-origin: left;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: white;
    bottom: 0%;
    left: 0%;
    transform-origin: right;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li a:hover:after,
.container .top-header .social-links ul li a:hover:before {
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li .underlist {
    position: absolute;
    width: auto;
    background: black;
    color: white;
    height: 204px;
    left: 0%;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    border: 1px solid wheat;
    border-radius: 5px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;

}

.container .top-header .social-links ul li:hover .underlist {
    transition: all ease-in-out 0.5s;
    opacity: 1;
    visibility:visible;

}

.container .top-header .social-links ul li .underlist li {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li .underlist li::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    background-color: white;
    top: 100%;
    left: 0%;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li .underlist li:hover:after {
    width: 50%;
    letter-spacing: 2px;
    transition: all 0.4s ease-in-out;
}

.container .top-header .social-links ul li .underlist li:hover {
    letter-spacing: 2px;
    transition: all 0.4s ease-in-out;
}


.container .top-header .search {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0%;
    left: -200%;
    background-color: rgba(250, 130, 49,0.2);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease-in-out;
}
.container .top-header .search.srch-actv{
    left: 0%;
    transition: all 0.4s ease-in-out;
}
.container .top-header .search > i{
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 30px;
    cursor: pointer;
    color: wheat;
    transition: all 0.4s ease-in-out;
}
.container .top-header .search > i:hover{
    transform: scale(0.9);
    transition: all 0.4s ease-in-out;
}
.container .top-header .search input {
    border: none;
    background: none;
    outline: none;
    width: 37vw;
    height: 10vh;
    border: none;
    background: none;
    outline: none;
    /* border: 1px solid white; */
    border: 1px solid wheat;
    border-radius: 4px;
    padding: 5px 10px;
    color: white;
    font-size: 23px;
}
.container .top-header .search input::placeholder{
color: white;
}
.top-header .sz{
    color: wheat;
}

.container .top-header .search button {
    border: none;
    background: none;
    outline: none;
    width: 7vw;
    height: 10vh;
    margin: 0px 0px 0px 10px;
    background: white;
    color: black;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease-in-out cubic-bezier();
    background: wheat;
}


.container .top-header .search button:hover {
    width: 5vw;
    transition: all 0.4s ease-in-out;
}
.icons i {
    padding: 10px;
    font-size: 20px;
    color: wheat;
    cursor: pointer;
}
.topmenu .icons i {
    color: black;
}

.hero {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.hero .right-shoe {
    width: 40%;
}

.hero .right-shoe .back {
    position: relative;
    padding: 0px 0px 0px 30px;
}

.hero .right-shoe .shoeback {
    top: 20%;
    position: absolute;
    z-index: -1;
    width: 380px;
    height: 380px;
border: 2px dotted wheat;
    border-radius: 50%;
}

.hero .right-shoe .back img {
    transform: rotate(40deg);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    width: 400px;
}
.hero .right-shoe .back img:hover{
    transform: rotate(20deg) scale(1.3);
    transition: all 0.5s ease-in-out;
}
.hero .left-content{
    width: 40%;
}
.hero .left-content h2{
    font-size: 5em;
    color: wheat;
}
.hero .left-content p{
    width: 60%;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0px;
    font-size: 0.8em;
    line-height: 22px;
    text-transform: capitalize;
}
.hero .left-content button {
    border: none;
    background: none;
    outline: none;
    padding: 10px 20px;
    font-size: 15px;
    background-color: wheat;
    cursor: pointer;
    font-weight: 500;
    border-radius: 6px;   
    transition: all 0.4s ease-in-out; 
}
.hero .left-content button:hover{
    box-shadow: 0px 0px 13px rgba(248, 194, 145,0.5);
    transition: all 0.4s ease-in-out; 
}

/* about */
#about{
    width: 100%;
    height: auto;
    padding: 5em 10px;
}
#about .about-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#about .about-container .left-img{
    width: 40%;
    height: auto;
    padding: 20px 40px;
}
#about .about-container .left-img img{
   width: 100%;
   height: 400px;
}
#about .about-container .right-text{
    width: 60%;
    padding: 20px 10px;
}
#about .about-container .right-text h3{
    width: 20%;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 100;
    border-bottom: 1px solid wheat;
    padding: 10px 0px;
}
#about .about-container .right-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);    
    line-height: 30px;
    text-align: justify;
    font-weight: 100;
}
.collection {
    width: 100%;
    height: auto;
    padding: 4em 10px;
}
.topheadeing{
    font-size: 3em;
    color: wheat;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    padding: 20px 0px 20px 0px;
    text-transform: capitalize;

}
.topheadeing::after{
    position: absolute;
    content: "";
    width: 10%;
    height: 3px;
    background-color: wheat;
    top: 0%;
    left: 45%;
}
.collection .collection-cat {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}
.collection .collection-cat .col{
    width: 30%;
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 10px;
}
.collection .collection-cat .col img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.collection .collection-cat .col:hover img {
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
} 
.collection .collection-cat .col .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(250, 130, 49,0.6);
    bottom: -100%;
    transition:  all 0.4s ease-in-out;
}
.collection .collection-cat .col:hover .overlay{
    
    bottom: 0%;
    transition:  all 0.4s ease-in-out;
}
.collection .collection-cat .col .overlay h2{
    color: white;
    text-transform: capitalize;
    font-size: 1.5em;
    position: absolute;
    bottom:-10%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
    transition:  all 0.4s ease-in-out;
}
.collection .collection-cat .col .overlay:hover h2{
    bottom:50%;
    overflow: visible;
    transition:  all 0.4s ease-in-out;
    transition-delay: 0.2s;
}

#feature {
    width: 100%;
    height: auto;
}
#feature .feature-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#feature .feature-container .ft-pr{
    width: 25%;
    height: 450px;
    background-color: wheat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
}
#feature .feature-container .ft-pr .img {
    width: 100%;
    height: 80%;
    position: relative;
}
#feature .feature-container .ft-pr .content{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
#feature .feature-container .humara .img{
    background-image: url('/images/air-humara-shoes.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
} 
#feature .feature-container .jordan .img{
    background-image: url('/images/air-jordan-13.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
} 

#feature .feature-container .hydro .img{
    background-image: url('/images/jordan-hydro-xi-.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
} 


#feature .feature-container .ft-pr .content p{
    color: rgba(0, 0, 0, 0.5);
}
#feature .feature-container .ft-pr .content a{
    text-decoration: none;
    color: black;
    font-weight: bolder;
}
#feature .feature-container .humara:hover .img{
    transform: scale(1.3) rotate(40deg) translateY(-50px);
    transition: all 0.4s ease-in-out;
}

#feature .feature-container .jordan:hover .img{
    transform: scale(1.3) rotate(-40deg);
    transition: all 0.4s ease-in-out;
}

#feature .feature-container .hydro:hover .img{
    transform: rotate(-30deg);
    transition: all 0.4s ease-in-out;
}
.shoppingfeature {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5em 10px;
}
.shoppingfeature .ft-shp {
    width: 30%;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    /* border: 2px solid wheat; */
    margin: 0px 10px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.shoppingfeature .ft-shp:hover{
    background-color: wheat;
    transition: all 0.3s ease-in-out;
}
.shoppingfeature .ft-shp:hover i{
    color: black;
    transition: all 0.3s ease-in-out;
}
.shoppingfeature .ft-shp h2{
    text-transform: uppercase;
}
.shoppingfeature .ft-shp p{
    font-size: 13px;
    line-height: 21px;
}
.shoppingfeature .ft-shp h2 i{
    margin: 0px 20px 0px 0px;
    font-size: 1.5em;
    color: #6c5ce7;
    transition: all 0.3s ease-in-out;
}

#contact {
    padding: 5em 10px;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: wheat;
}
.right {
    width: 70%;
    border: 1px solid wheat;
    padding: 20px 10px;
}
.right h2{
    font-size: 2em;
    color: black;
    font-weight: 100;
}
.right .threelist {
    width: 70%;
    display: flex;
    justify-content: space-evenly;
}
.right .threelist .link {
list-style: none;
}
.right .threelist .link li {
    padding: 10px 0px;
}
.right .threelist .link li a{
    text-decoration: none;
    font-size: 18px;
    color: black;
    padding: 20px 0px;
}
.left-contact {
    width: 30%;
    height: 100%;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-direction: column;
}
.left-contact h2{
    font-size: 2em;
    margin: 10px 0px;
}
.left-contact h3{
    font-size: 15px;
    margin: 10px 0px;
}
.left-contact address{
    margin: 10px 0px;
}
.left-contact input{
    border: none;
    outline: none;
    background: none;
    width: 20vw;
    height: 5vh;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    margin: 10px 0px;
}
.left-contact input::placeholder{
    color: white;
}

.left-contact button{
    border: none;
    outline: none;
    background: none;
    width: 20vw;
    height: 5vh;
    color: white;
    background: black;
    padding: 10px 15px;
    cursor: pointer;
    text-transform: uppercase;
}